home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / fcfgw40s.zip / FILECFG.H < prev    next >
C/C++ Source or Header  |  1996-04-20  |  2KB  |  70 lines

  1. // FileCFG.h : main header file for the FILECFG application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CFileCFGApp:
  12. // See FileCFG.cpp for the implementation of this class
  13. //
  14.  
  15. class CFileCFGApp : public CWinApp
  16. {
  17. public:
  18.     CFileCFGApp();
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CFileCFGApp)
  23.     public:
  24.     virtual BOOL InitInstance();
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28.  
  29.     //{{AFX_MSG(CFileCFGApp)
  30.         // NOTE - the ClassWizard will add and remove member functions here.
  31.         //    DO NOT EDIT what you see in these blocks of generated code !
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34. public:
  35.     void ShowTipAtStartup(void);
  36.     void ShowTipOfTheDay(void);
  37.     void ShowSplashScreen();
  38. };
  39.  
  40. extern CFileCFGApp theApp;
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CAboutDlg dialog used for App About
  44.  
  45. class CAboutDlg : public CDialog
  46. {
  47. public:
  48.     CAboutDlg();
  49.  
  50. // Dialog Data
  51.     //{{AFX_DATA(CAboutDlg)
  52.     enum { IDD = IDD_ABOUTBOX };
  53.     //}}AFX_DATA
  54.  
  55.     // ClassWizard generated virtual function overrides
  56.     //{{AFX_VIRTUAL(CAboutDlg)
  57.     protected:
  58.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  59.     //}}AFX_VIRTUAL
  60.  
  61. // Implementation
  62. protected:
  63.     virtual BOOL OnInitDialog();
  64.     //{{AFX_MSG(CAboutDlg)
  65.     //}}AFX_MSG
  66.     DECLARE_MESSAGE_MAP()
  67. };
  68.  
  69. /////////////////////////////////////////////////////////////////////////////
  70.